home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / gawk-3.000 / gawk-3 / gawk-3.0.0 / test / prmarscl.awk < prev    next >
Encoding:
AWK Script  |  1995-08-16  |  59 b   |  7 lines

  1. function test(a)
  2. {
  3.     print a[1]
  4. }
  5.  
  6. BEGIN    { j = 4; test(j) }
  7.